home *** CD-ROM | disk | FTP | other *** search
- Subject: Re: Force Cursor Adjustment
- Sent: 6/28/96 9:48 AM
- Received: 7/1/96 8:34 AM
- From: Serge Froment, sfroment@odyssee.net
- Reply-To: ODF Interest, ODF-Interest@CILabs.ORG
- To: OpenDoc Development Framework Discussion List, ODF-Interest@CILabs.
-
- >>This is a bug we also have in ODFContainer. I am currently trying to fix
- >>it by calling
- >>
- >>session->GetDispatcher(ev)->InvalidateFacetUnerMouse(ev)
- >>
- >>I'll keep you posted.
- >
- >This is working fine. I haved added a FW_ForceAdjustCursor in ODF 2. In
- >the mean time you can use the above line of code.
-
- Can you send me source code of FW_ForceAdjustCursor? I will add it to my
- ODFMissing module until ODF 2 and I want my function be identical so I have
- no source code to update.
-
- BTW, my ODFMissing module currently contains two functions. I think I have
- already told you about, but just in case, here they are:
-
- FW_Fixed FW_TruncatedToInt(FW_Fixed f)
- {
- return FW_ODFixedToFixed(f.fRep & 0xFFFF0000ul);
- }
-
-
- FW_Fixed operator%(FW_Fixed f1, FW_Fixed f2)
- {
- return f1 - FW_TruncatedToInt(f1 / f2) * f2;
- }
-
- Serge
-
-